home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 April / Electronic Clipper 1998-04.iso / Idea Source® / Splash.Dir / 00026_Script_26 < prev    next >
Text File  |  1998-02-19  |  480b  |  28 lines

  1. on exitFrame
  2.   
  3.   if soundbusy(1) then
  4.     go the frame
  5.   else 
  6.     startTimer
  7.     repeat while the timer < 60
  8.       nothing
  9.     end repeat
  10.     go frame "main"
  11.   end if
  12.   
  13.   repeat with n=15 to 19
  14.     if rollover(n) then
  15.       set the visible of sprite n to false
  16.       updatestage
  17.     end if
  18.   end repeat
  19.   
  20.   repeat with n=15 to 19
  21.     if not rollover(n) then
  22.       set the visible of sprite n to true
  23.       updatestage
  24.     end if
  25.   end repeat
  26.   
  27. end
  28.